信捷PLC通信实例 XINJIEModbusTCP├── App.config
├── Form1.Designer.cs
├── Form1.cs
├── Form1.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── XINJIEModbus.csproj
├── XINJIEModbus.sln
├── bin
│ └── Debug
│ ├── DVPModbus.exe
│ ├── DVPModbus.exe.config
│ ├── DVPModbus.pdb
│ ├── IoTClient.dll
│ ├── IoTClient.xml
│ ├── Modbus.dll
│ ├── System.IO.Ports.dll
│ └── System.IO.Ports.xml
├── obj
│ └── Debug
│ ├── DVPModbus.Properties.Resources.resources
│ ├── DVPModbus.csproj.CopyComplete
│ ├── DVPModbus.csproj.CoreCompileInputs.cache
│ ├── DVPModbus.csproj.FileListAbsolute.txt
│ ├── DVPModbus.csproj.GenerateResource.cache
│ ├── DVPModbus.csprojAssemblyReference.cache
│ ├── DVPModbus.exe
│ ├── DVPModbus.pdb
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── XINJIEModbus.Form1.resources
│ ├── XINJIEModbus.csproj.CopyComplete
│ ├── XINJIEModbus.csproj.CoreCompileInputs.cache
│ ├── XINJIEModbus.csproj.FileListAbsolute.txt
│ ├── XINJIEModbus.csproj.GenerateResource.cache
│ ├── XINJIEModbus.csprojAssemblyReference.cache
│ └── build.force
├── packages
│ ├── IoTClient.0.0.86
│ │ ├── IoTClient.0.0.86.nupkg
│ │ └── lib
│ │ └── netstandard2.0
│ │ ├── IoTClient.dll
│ │ └── IoTClient.xml
│ └── System.IO.Ports.4.6.0
│ ├── LICENSE.TXT
│ ├── System.IO.Ports.4.6.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net461
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── ref
│ │ ├── net461
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── runtimes
│ │ ├── linux
│ │ │ └── lib
│ │ │ └── netstandard2.0
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ ├── osx
│ │ │ └── lib
│ │ │ └── netstandard2.0
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ └── win
│ │ └── lib
│ │ ├── net461
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.IO.Ports.dll
│ │ │ └── System.IO.Ports.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
└── packages.config
31 directories, 66 files
评论